home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib7 / v_09_08 / 9n08110a < prev    next >
Encoding:
Text File  |  1995-11-01  |  513 b   |  14 lines

  1. /*
  2.         This is a sample test file for the plist program.
  3. */
  4.  
  5. main()                                          /* this is a comment    */
  6. {
  7.         int i, j, k;
  8.         printf("Hello\n");                      /* this is another one  */
  9.         for (i = 0; i < 8; i++)                 /* here's a third       */
  10.                 for (j = 0; j < 8; j++)         /* and a fourth         */
  11.                         k = i * j;
  12.         exit(0);                                /* bye                  */
  13. }
  14.